home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Full
/
Paragon Drive Backup 9
/
DB90_SE_x64.msi
/
Data1.cab
/
_3F5A37723F97489FAE859F5DC6AE9204
< prev
next >
Wrap
Extensible Markup Language
|
2008-10-24
|
2KB
|
62 lines
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
version="1.0">
<xsl:output
method="text"
encoding="UTF-8"
omit-xml-declaration="yes"
indent="no"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/report">
QT_TRANSLATE_NOOP("QObject", "Short E-mail notification report.")
----------------------------------------------------------------------------------
QT_TRANSLATE_NOOP("QObject", "System info:")
----------------------------------------------------------------------------------
QT_TRANSLATE_NOOP("QObject", "Computer Name: ")<xsl:value-of select="computer"/>
<xsl:text> </xsl:text><xsl:value-of select="OS"/>
----------------------------------------------------------------------------------
QT_TRANSLATE_NOOP("QObject", "Summary:")
----------------------------------------------------------------------------------
QT_TRANSLATE_NOOP("QObject", "Generated: ")<xsl:value-of select="generated"/><xsl:text> </xsl:text>
<xsl:choose>
<xsl:when test="error">
QT_TRANSLATE_NOOP("QObject", "Not the all operations have been applied.")
QT_TRANSLATE_NOOP("QObject", "The following error had occured:")<xsl:value-of select="error/@description"/> (<xsl:value-of select="error/@code"/>)
</xsl:when>
<xsl:otherwise>
QT_TRANSLATE_NOOP("QObject", "All operations have been applied successfully.")
</xsl:otherwise>
</xsl:choose>
----------------------------------------------------------------------------------
QT_TRANSLATE_NOOP("QObject", "The following operations have been performed:")
----------------------------------------------------------------------------------
<xsl:for-each select="action[@type='physical']">
<xsl:text> </xsl:text><xsl:value-of select="@description"/><xsl:text> </xsl:text>
<xsl:if test="error">
<xsl:text> </xsl:text>QT_TRANSLATE_NOOP("QObject", "The operation has failed:")
<xsl:text> </xsl:text><xsl:value-of select="error/@description"/> (<xsl:value-of select="error/@code"/>)
</xsl:if>
<xsl:text> </xsl:text>
</xsl:for-each>
----------------------------------------------------------------------------------
QT_TRANSLATE_NOOP("QObject", "You have requested short e-mail reports from Drive BackupΓäó")
QT_TRANSLATE_NOOP("QObject", "Please change e-mail options to get full reports or to stop getting the reports.")
</xsl:template>
</xsl:stylesheet>